DataSource for Entity Framework in WPF
C1.LiveLinq Namespace / SourceChangeEventArgs<T> Class / Equals Method / Equals(SourceChangeEventArgs<T>) Method
The object to compare with the current object.

In This Topic
    Equals(SourceChangeEventArgs<T>) Method
    In This Topic
    Determines whether the specified object is equal to the current object.
    Syntax
    'Declaration
     
    Public Overloads Function Equals( _
       ByVal args As SourceChangeEventArgs(Of T) _
    ) As Boolean
    public bool Equals( 
       SourceChangeEventArgs<T> args
    )

    Parameters

    args
    The object to compare with the current object.

    Return Value

    true if the specified object is equal to the current one; otherwise, false.
    Remarks
    Two SourceChangeEventArgs<T> are considered equal if the values of their Item and ChangeType properties are equal.
    See Also